{% extends 'core/_base.html' %} {% load static %} {% block title %} Supplier {% endblock title %} {% block body %}
Supplier List
{% if suppliers %}
{% for supplier in suppliers %} {% endfor %}
SL. Supplier Name Address Mobile No Email Action
{{ forloop.counter }} {{ supplier.name }} {{ supplier.address }} {{ supplier.phone_number }} {{ supplier.email }}
{% if suppliers.has_previous %} Previous {% endif %}
{% if suppliers.has_next %} Next {% endif %}

Showing {{ suppliers.number }}/{{ suppliers.paginator.num_pages }}

{% else %} {% include 'core/info/message.html' %} {% endif %}
{% endblock body %}